home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / SciAn / src / ScianFileSystem.h < prev    next >
C/C++ Source or Header  |  1994-08-01  |  680b  |  36 lines

  1. /* file types */
  2. #define DIRFILE        0
  3. #define BINFILE        1
  4. #define OBJFILE        2
  5. #define TEXTFILE    3
  6. #define DATAFILE    4
  7. #define LOGFILE        5
  8. #define PALFILE        6
  9. #define OTHFILE        7
  10.  
  11. #define NFILETYPES    8
  12.  
  13. extern char dirSave[];
  14.  
  15. /* prototypes for FileSystem routines */
  16.  
  17. #ifdef PROTO
  18. void InitFileSystem(void);
  19. void KillFileSystem(void);
  20. void SetUpCollect(void);
  21. void RestoreDir(void);
  22. void DoNewFileWindow(void);
  23. void ProcessSetFormat(void);
  24. void ProcessShowInfo(void);
  25. void GetFileWindow(char *);
  26. #else
  27. void InitFileSystem();
  28. void KillFileSystem();
  29. void SetUpCollect();
  30. void RestoreDir();
  31. void DoNewFileWindow();
  32. void ProcessSetFormat();
  33. void ProcessShowInfo();
  34. void GetFileWindow();
  35. #endif
  36.